home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ircd_dos.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  63 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(11797);
  8.  script_bugtraq_id(8131);
  9.  script_version ("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "IRCd OperServ Raw Join DoS";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running a version of ircd which may crash
  16. when it receives certain raw messages.
  17.  
  18. An attacker may use this flaw to disable this service remotely.
  19.  
  20. Solution : Upgrade to UnrealIRCD 3.2 beta17 or 3.1.6
  21. Risk factor : High";
  22.  
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "checks the version of the remote ircd";
  27.  script_summary(english:summary["english"]);
  28.  
  29.  script_category(ACT_GATHER_INFO);
  30.  
  31.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  32.  family["english"] = "Gain root remotely";
  33.  script_family(english:family["english"]);
  34.  
  35.  script_dependencie("find_service.nes", "find_service2.nasl", "ircd.nasl");
  36.  script_require_ports("Services/irc", 6667);
  37.  exit(0);
  38. }
  39.  
  40. #
  41.  
  42. port = get_kb_item("Services/irc");
  43. if (!port) port = 6667;
  44. if(! get_port_state(port)) exit(0);
  45.  
  46. key = string("irc/banner/", port);
  47. banner = get_kb_item(key);
  48. if(!banner)exit(0);
  49.  
  50. # Unreal ircd
  51. if(egrep(pattern:".*Unreal3\.((1\.[0-5][^0-9])|2-beta([0-9][^0-9]|1[0-6]))", string:banner))
  52. {
  53.  security_hole(port);
  54.  exit(0);
  55. }
  56.  
  57. # Unreal ircd
  58. if(egrep(pattern:".*Unreal3\.((1\.[0-5][^0-9])|2-beta([0-9][^0-9]|1[0-6]))", string:banner))
  59. {
  60.  security_hole(port);
  61.  exit(0);
  62. }
  63.